Quadrangle

data class Quadrangle(val points: FloatArray = FloatArray(8)) : Parcelable

The quadrangle used to represent document borders. It consists of four points in a specific order: Top Left, Top Right, Bottom Left, Bottom Right. By default, an empty quadrangle is created, meaning document detection has not been run, or it has detected no document in the image.

Constructors

Link copied to clipboard
constructor(x1: Float, y1: Float, x2: Float, y2: Float, x3: Float, y3: Float, x4: Float, y4: Float)

Create a quadrangle from the coordinates of the corners. See Quadrangle for more details.

constructor(points: FloatArray = FloatArray(8))

Creates a new Quadrangle instance from the given coordinates. The order of the corners must be: TopLeft (x, y), TopRight (x, y), BottomLeft (x, y), BottomRight (x, y). Each coordinate must be between 0 and 1. x values are relative to the width of the image, y values are relative to the height of the image.

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
fun isEmpty(): <Error class: unknown class>
Link copied to clipboard
Link copied to clipboard
fun move(cornerIndex: Int, dx: Float, dy: Float)

Move a specific corner by a fixed distance.

Link copied to clipboard
fun order()

Reorder the corners of the Quadrangle in the standard order.

Link copied to clipboard

Rotate a quadrangle by a specific angle

Link copied to clipboard

Set the corners of the quadrangle to match the corners of the image.